.delivery-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.delivery-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
}

.delivery-step .icon {
    font-size: 24px;
    background: black;
    color: white;
    border-radius: 50%;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator {
    width: 30px;
    height: 2px;
    background: black;
}

@media (max-width: 768px) {
    .delivery-timeline {
        flex-wrap: wrap;
        font-size: 12px;
        gap: 5px;
    }
    .delivery-step {
        max-width: 70px;
    }
    .delivery-step .icon {
        font-size: 16px;
        width: 25px;
        height: 25px;
    }
}
